home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / linux / statfs.h < prev    next >
C/C++ Source or Header  |  2005-10-13  |  330b  |  23 lines

  1. #ifndef _LINUX_STATFS_H
  2. #define _LINUX_STATFS_H
  3.  
  4. #include <linux/types.h>
  5.  
  6. #include <asm/statfs.h>
  7.  
  8. struct kstatfs {
  9.     long f_type;
  10.     long f_bsize;
  11.     sector_t f_blocks;
  12.     sector_t f_bfree;
  13.     sector_t f_bavail;
  14.     sector_t f_files;
  15.     sector_t f_ffree;
  16.     __kernel_fsid_t f_fsid;
  17.     long f_namelen;
  18.     long f_frsize;
  19.     long f_spare[5];
  20. };
  21.  
  22. #endif
  23.